3fa80529807e5c9616342919bd47aa85db1aa3f6,hazelcast/src/main/java/com/hazelcast/map/proxy/MapProxySupport.java,MapProxySupport,tryRemoveInternal,#Data#number#TimeUnit#,324

Before Change


    protected boolean tryRemoveInternal(final Data key, final long timeout, final TimeUnit timeunit) {
        TryRemoveOperation operation = new TryRemoveOperation(name, key, getTimeInMillis(timeout, timeunit));
        boolean removed = (Boolean) invokeOperation(key, operation);
        if (removed) {
            invalidateLocalNearCache(key);
        }
        return removed;
    }

After Change


    protected boolean tryRemoveInternal(final Data key, final long timeout, final TimeUnit timeunit) {
        TryRemoveOperation operation = new TryRemoveOperation(name, key, getTimeInMillis(timeout, timeunit));
        boolean removed = (Boolean) invokeOperation(key, operation);
        invalidateLocalNearCache(key);
        return removed;
    }